@charset 'UTF-8';
html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.slider {
    width: 100%;
}

.slick-slide {
    margin: 0px;
}

.slick-slide img {
    width: 100%;
}
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../iamges/ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    margin-top: -32px;
    display: none;
    width: 0px;
    height: 0px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 12px;
}
.slick-prev
{
    /* left: 0;
    background-image: url(../iamges/arrow-left.png); */
}

.slick-next
{
    /* right: 0;
    background-image: url(../iamges/arrow-right.png); */
}

/* Dots */
.slick-dots
{
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #fff;
}
.slick-dots li.slick-active button
{
    opacity: 0.5;
    background-color: #000000;
}

/* ipad pro */
@media screen and (max-width: 1024px) {
    .slick-prev,.slick-next{
        display: none !important;
    }
    .slick-dots{
        bottom: 0;
    }
}
/* ipad */
@media screen and (max-width: 768px) {
    .slick-dots li button{
        width: 10px;
        height: 10px;
    }
    .slick-dots{
        bottom: -6px;
    }
}
/* iphone6 7 8 plus */
@media screen and (max-width: 414px) {
    .slick-dots li button{
        width: 3px;
        height: 3px;
    }
    .slick-dots{
        bottom: -14px;
    }
}
/* iphoneX */
@media screen and (max-width: 375px) and (-webkit-device-pixel-ratio: 3) {
    .slick-dots li button{
        width: 1px;
        height: 1px;
    }
}
/* iphone6 7 8 */
@media screen and (max-width: 375px) and (-webkit-device-pixel-ratio: 2) {
}
/* iphone5 */
@media screen and (max-width: 320px) {
}